home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d909.lha / GoldED2 / Tools / Recover / Doc next >
Text File  |  1993-08-28  |  3KB  |  63 lines

  1.  
  2.  Recover v1.0 ©1993 Diemar Eilert
  3.  -------------------------------------------------------------------------------
  4.  
  5.  A  program to recover text buffers after your system has chrashed. Recover will
  6.  scan  all  available  memory  locations (the free memory pool as well as memory
  7.  allocated  by  other task), looking for lost buffers. Since freed memory is not
  8.  protected by the OS, lost buffers may become trashed. Recover will still try to
  9.  restore  trashed  buffers  but  they  may contain garbage lines. You'll have to
  10.  verify  that  restored  buffers  are  intact before you copy them over your old
  11.  files.  Recover will try to figure out how many lines are corrupt to give you a
  12.  rough  idea of wether additional work is required. Be warned: these figures are
  13.  not  exact  since  it's  hard  to determine wether a line is corrupt or not. To
  14.  increase  your  chances,  run  this program as soon as possible. Interrupt your
  15.  startup  sequence  (type CTRL-D) and run recover IMMEDIATELY. Don't run Recover
  16.  if  your  system is badly damaged (task held requester): Instead, reboot before
  17.  attempting  to  recover  lost  buffers.  Recover  disables  multitasking  while
  18.  scanning memory to prevent other tasks from allocating memory - this means that
  19.  your  mouse  pointer  freezes  temporarily.  Recover should be run from a shell
  20.  window. The following arguments are supported:
  21.  
  22.                RECOVER DRIVE/K,ALL/S,TEST/S,MAXLEN/N,MAXLINES/N
  23.  
  24.  DRIVE
  25.  -----
  26.  
  27.  Drive  where  to  write restored files (e.g. df0:). 
  28.  
  29.  *******************************************************************************
  30.  * Don't  use  a ram disk (might overwrite the text to recover) or a hard disk *
  31.  * (program might fail while writing since it has to do some dangerous stuff) !*
  32.  *******************************************************************************
  33.  
  34.  ALL
  35.  ---
  36.  
  37.  Recover file even if it appears to be unchanged (Recover defaults to ignoring a
  38.  text if it has never been modified).
  39.  
  40.  TEST
  41.  ----
  42.  
  43.  Just scan memory for text buffers to recover but don't write to a disk. Recover
  44.  tries  to figure out how many lines can be restored respectively are corrupt. A
  45.  line  is considered corrupt if it containes ASCII-Codes below 32 or from 128 to
  46.  160.  Nevertheless,  even  corrupt  lines  are restored since parts of them may
  47.  still be usable.
  48.  
  49.  
  50.  MAXLEN
  51.  ------
  52.  
  53.  Maximum  line  lenght to be considered valid. If Recover happens to encounter a
  54.  longer  line while scanning memory it will refuse to restore the line (might be
  55.  corrupt). Defaults to 255.
  56.  
  57.  MAXLINES
  58.  --------
  59.  
  60.  Maximum  number  of  lines (per text) to restore. Recover will stop recovery as
  61.  soon  as  a  text  exeeds this limit (text might be corrupt). Defaults to 10000
  62.  lines.
  63.